Removing the page, discussion, history, or notify me tab on your wiki
By making some quick changes to your theme, you can hide the Page, Discussion, History, or Notify Me tab at the top of your wiki. You might do this as an educator who wants to hide the history tab from students or as an organizer who would like to make the wiki even simpler for your community by removing all the tabs. To do this you can edit your theme and change the CSS for the <$WikiPageMenuEntries$> theme component:
The top section of the theme’s code is CSS, or code which formats the HTML components in your theme. The CSS will be in the head of the theme between the <style type=”text/css”> and </style> tags. This is the section where we’ll be changing the code for this customization.
To remove the discussion tab from your page, paste the following CSS on a new line in the section between the two <style> tags:
.WikiPageMenuEntries #discussion { display: none; }
To remove the history tab, you can instead add in this code:
.WikiPageMenuEntries #history { display: none; }
To remove the notify me tab, add the following CSS:
.WikiPageMenuEntries #notify { display: none; }
Finally, if you would like to remove the page tab, you can paste in this CSS:
.WikiPageMenuEntries #page { display: none; }
Once you have removed the components from the theme, preview your changes, save your theme and apply the theme to your wiki.
Removing the page, discussion, history, or notify me tab on your wiki
By making some quick changes to your theme, you can hide the Page, Discussion, History, or Notify Me tab at the top of your wiki. You might do this as an educator who wants to hide the history tab from students or as an organizer who would like to make the wiki even simpler for your community by removing all the tabs. To do this you can edit your theme and change the CSS for the <$WikiPageMenuEntries$> theme component:
.WikiPageMenuEntries #discussion { display: none; }
.WikiPageMenuEntries #history { display: none; }
.WikiPageMenuEntries #notify { display: none; }
.WikiPageMenuEntries #page { display: none; }